home *** CD-ROM | disk | FTP | other *** search
/ Aminet 5 / Aminet 5 - March 1995.iso / Aminet / dev / misc / easyrexx.lha / EasyREXX / test.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1994-11-30  |  464 b   |  33 lines

  1. /*
  2.  *    File:            test.rexx
  3.  *    Description:    Small AREXX file that uses all commands known to
  4.  *                    the test program
  5.  *
  6.  *    (C) 1994, Ketil Hunn
  7.  *
  8.  */
  9.  
  10. ADDRESS EASYREXX_TEST
  11.  
  12. clear
  13.  
  14. open project "ram:foo digg"
  15. open text "ram:foo"
  16. open "ram:foo"            /* defaults to OPEN PROJECT */
  17. saveas NAME "ram:foo"
  18.  
  19. help amigaguide "arexx"
  20. help "arexx"
  21.  
  22. smiley=":-)"
  23. text "Hello World!" smiley
  24. row 54
  25.  
  26. /* pause in case we started the script from WB */
  27.  
  28. do i=1 to 4000
  29.  nop
  30. end
  31.  
  32. quit
  33.